time.Time.unixSec (method)
13 uses
time (current package)
format.go#L1392: name, offset, _, _, _ := local.lookup(t.unixSec())
format.go#L1408: offset, ok := local.lookupName(zoneName, t.unixSec())
format_rfc3339.go#L146: if _, offset, _, _, _ := local.lookup(t.unixSec()); offset == zoneOffset {
time.go#L188: func (t *Time) unixSec() int64 { return t.sec() + internalToUnix }
time.go#L477: sec := t.unixSec()
time.go#L497: sec := t.unixSec()
time.go#L1213: name, offset, _, _, _ = t.loc.lookup(t.unixSec())
time.go#L1223: _, _, startSec, endSec, _ := t.loc.lookup(t.unixSec())
time.go#L1242: return t.unixSec()
time.go#L1251: return t.unixSec()*1e3 + int64(t.nsec())/1e6
time.go#L1260: return t.unixSec()*1e6 + int64(t.nsec())/1e3
time.go#L1270: return (t.unixSec())*1e9 + int64(t.nsec())
time.go#L1365: } else if _, localoff, _, _, _ := Local.lookup(t.unixSec()); offset == localoff {
 |
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |